home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Inspectors / WrapperInspector / DefaultSubInspector.h < prev    next >
Text File  |  1995-06-12  |  2KB  |  50 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    DefaultSubInspector
  4. //
  5. //    Inherits From:        Object
  6. //
  7. //    Declared In:        DefaultSubInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        DefaultSubInspector provides an abstract superclass for any
  12. //        subinspectors used by the custom WM Contents Inspector
  13. //        WrapperInspector.
  14. //        
  15. //    Disclaimer
  16. //
  17. //        You may freely copy, distribute and reuse this software and its
  18. //        associated documentation. I disclaim any warranty of any kind, 
  19. //        expressed or implied, as to its fitness for any particular use.
  20. //
  21. //----------------------------------------------------------------------------------------------------
  22. #import <appkit/appkit.h>
  23.  
  24.  
  25. @interface DefaultSubInspector : Object
  26. {
  27.     id    inspectorView;
  28. }
  29.  
  30. //----------------------------------------------------------------------------------------------------
  31. //  Initialization and Free Methods
  32. //----------------------------------------------------------------------------------------------------
  33. + new;
  34.  
  35.  
  36. //----------------------------------------------------------------------------------------------------
  37. //  Accessing Inspection View
  38. //----------------------------------------------------------------------------------------------------
  39. - inspectorView;
  40. - clearInspectorView;
  41.  
  42.  
  43. //----------------------------------------------------------------------------------------------------
  44. //  Inspection Methods
  45. //----------------------------------------------------------------------------------------------------
  46. - inspect: (STR) path;
  47. - inspectionError: (STR) path;
  48.  
  49.  
  50. @end